home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / Servis / Katalog / Katalog.dxr / 00068_Ovládání link.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  1.0 KB  |  42 lines

  1. property Tlacitko
  2. global Internet
  3.  
  4. on beginSprite me
  5.   set the visible of sprite the spriteNum of me to 1
  6.   set the visible of sprite (the spriteNum of me + 1) to 0
  7. end
  8.  
  9. on endSprite me
  10. end
  11.  
  12. on mouseEnter me
  13.   puppetSound(1, "Najezd")
  14.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  15.   set the visible of sprite (the spriteNum of me + 1) to 1
  16.   set Tlacitko to the castNum of sprite (the spriteNum of me + 1)
  17. end
  18.  
  19. on mouseLeave me
  20.   set the visible of sprite (the spriteNum of me + 1) to 0
  21.   set the cursor of sprite the spriteNum of me to -1
  22.   if Tlacitko > 0 then
  23.     set the member of sprite (the spriteNum of me + 1) to member Tlacitko
  24.   end if
  25. end
  26.  
  27. on mouseDown me
  28.   puppetSound(1, "Klik")
  29.   if Tlacitko > 0 then
  30.     set the member of sprite (the spriteNum of me + 1) to member (Tlacitko + 1)
  31.   end if
  32. end
  33.  
  34. on mouseUp me
  35.   global AutoShow
  36.   set AutoShow to 0
  37.   if Tlacitko > 0 then
  38.     set the member of sprite (the spriteNum of me + 1) to member Tlacitko
  39.   end if
  40.   gotoNetPage(Internet)
  41. end
  42.